Q3TriGrid_GetVertexPosition
You can use theQ3TriGrid_GetVertexPosition
function to get the position of a vertex of a trigrid.
TQ3Status Q3TriGrid_GetVertexPosition ( TQ3GeometryObject triGrid, unsigned long rowIndex, unsigned long columnIndex, TQ3Point3D *position);
triGrid
- A trigrid.
rowIndex
- A row index into the
vertices
array of the specified trigrid.columnIndex
- A column index into the
vertices
array of the specified trigrid.position
- On exit, the position of the specified vertex.
DESCRIPTION
TheQ3TriGrid_GetVertexPosition
function returns, in theposition
parameter, the position of the vertex having row and column indicesrowIndex
andcolumnIndex
in thevertices
array of the trigrid specified by thetriGrid
parameter.